--[[ 编码: JX-800-00 名称: 空白页面 作者: 日期:2025-1-29 函数: GenerateViewHTML 功能: 更改记录: --]] json = require ("json") mobox = require ("OILua_JavelinExt") m3 = require("oi_base_mobox") function GenerateViewHTML( strLuaDEID ) local action = {} local str_html = "
" action[1] = { action_type = "chart", value = { graphicType = "html", title = { text = "汇总测试空白html", align = "center", color = "#515a6e", font = "微软雅黑", fontSize = 12 }, html = str_html } } nRet, strRetInfo = mobox.setAction( strLuaDEID, lua.table2str(action) ) if ( nRet ~= 0 ) then lua.Error( strLuaDEID, debug.getinfo(1), "setAction失败! "..strRetInfo..' action = '..strAction ) end end